ÄúµÄλÖãºÑ°ÃÎÍøÊ×Ò³£¾±à³ÌÀÖÔ°£¾VBScript£¾VBScript


objects constants operators statements functions properties methods






OPERATOR:  Not

Not

The Not operator is used to perform a logical negation on an expression. The expression must only be of Boolean subtype (True orFalse). This operator causes a True expression to become False, and a False expression to become True.

Code:
<% anyexpression = True %>
<% =Not anyexpression %>

Output:
False